home *** CD-ROM | disk | FTP | other *** search
/ Interactive Quarterly / The Best of New Machine Publishing 1 - Disc 4: Interactive Quarterly.iso / pc / cafe / ultslots.dir / 00263.ls < prev    next >
Encoding:
Text File  |  1996-10-06  |  551 b   |  36 lines

  1. on mouseUp
  2.   global sceneCount, vidCredits
  3.   if vidCredits > 0 then
  4.     set sceneCount to sceneCount + 1
  5.     case sceneCount of
  6.       1:
  7.         go("SC1")
  8.       2:
  9.         go("SC2")
  10.       3:
  11.         go("SC3")
  12.       4:
  13.         go("SC4")
  14.       5:
  15.         go("SC5")
  16.       6:
  17.         go("SC6")
  18.       7:
  19.         go("SC7")
  20.       8:
  21.         go("SC8")
  22.       9:
  23.         go("END")
  24.       10:
  25.         go("HOT1")
  26.       11:
  27.         go("HOT2")
  28.       12:
  29.         go("REPEAT")
  30.       13:
  31.         set sceneCount to 0
  32.         go("VIDROOM EXIT")
  33.     end case
  34.   end if
  35. end
  36.